home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / perl5 / 5.8.7 / i686-linux-thread-multi / Sys / Syslog.pm < prev   
Text File  |  2006-04-25  |  17KB  |  605 lines

  1. package Sys::Syslog;
  2. require 5.006;
  3. require Exporter;
  4. require DynaLoader;
  5. use Carp;
  6. use strict;
  7.  
  8. our @ISA = qw(Exporter DynaLoader);
  9. our @EXPORT = qw(openlog closelog setlogmask syslog);
  10. our @EXPORT_OK = qw(setlogsock);
  11. our $VERSION = '0.06';
  12.  
  13. # it would be nice to try stream/unix first, since that will be
  14. # most efficient. However streams are dodgy - see _syslog_send_stream
  15. my @connectMethods = ( 'tcp', 'udp', 'unix', 'stream', 'console' );
  16. if ($^O =~ /^(freebsd|linux)$/) {
  17.     @connectMethods = grep { $_ ne 'udp' } @connectMethods;
  18. }
  19. my @defaultMethods = @connectMethods;
  20. my $syslog_path = undef;
  21. my $transmit_ok = 0;
  22. my $current_proto = undef;
  23. my $failed = undef;
  24. my $fail_time = undef;
  25. our ($connected, @fallbackMethods, $syslog_send, $host);
  26.  
  27. use Socket ':all';
  28. use Sys::Hostname;
  29.  
  30. =head1 NAME
  31.  
  32. Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl interface to the UNIX syslog(3) calls
  33.  
  34. =head1 SYNOPSIS
  35.  
  36.     use Sys::Syslog;                          # all except setlogsock, or:
  37.     use Sys::Syslog qw(:DEFAULT setlogsock);  # default set, plus setlogsock
  38.  
  39.     setlogsock $sock_type;
  40.     openlog $ident, $logopt, $facility;       # don't forget this
  41.     syslog $priority, $format, @args;
  42.     $oldmask = setlogmask $mask_priority;
  43.     closelog;
  44.  
  45. =head1 DESCRIPTION
  46.  
  47. Sys::Syslog is an interface to the UNIX C<syslog(3)> program.
  48. Call C<syslog()> with a string priority and a list of C<printf()> args
  49. just like C<syslog(3)>.
  50.  
  51. Syslog provides the functions:
  52.  
  53. =over 4
  54.  
  55. =item openlog $ident, $logopt, $facility
  56.  
  57. I<$ident> is prepended to every message.  I<$logopt> contains zero or
  58. more of the words I<pid>, I<ndelay>, I<nowait>.  The cons option is
  59. ignored, since the failover mechanism will drop down to the console
  60. automatically if all other media fail.  I<$facility> specifies the
  61. part of the system to report about, for example LOG_USER or LOG_LOCAL0:
  62. see your C<syslog(3)> documentation for the facilities available in
  63. your system.
  64.  
  65. B<You should use openlog() before calling syslog().>
  66.  
  67. =item syslog $priority, $format, @args
  68.  
  69. If I<$priority> permits, logs I<($format, @args)>
  70. printed as by C<printf(3V)>, with the addition that I<%m>
  71. is replaced with C<"$!"> (the latest error message).
  72.  
  73. If you didn't use openlog() before using syslog(), syslog will try to
  74. guess the I<$ident> by extracting the shortest prefix of I<$format>
  75. that ends in a ":".
  76.  
  77. =item setlogmask $mask_priority
  78.  
  79. Sets log mask I<$mask_priority> and returns the old mask.
  80.  
  81. =item setlogsock $sock_type [$stream_location] (added in 5.004_02)
  82.  
  83. Sets the socket type to be used for the next call to
  84. C<openlog()> or C<syslog()> and returns TRUE on success,
  85. undef on failure.
  86.  
  87. A value of 'unix' will connect to the UNIX domain socket (in some
  88. systems a character special device) returned by the C<_PATH_LOG> macro
  89. (if your system defines it), or F</dev/log> or F</dev/conslog>,
  90. whatever is writable.  A value of 'stream' will connect to the stream
  91. indicated by the pathname provided as the optional second parameter.
  92. (For example Solaris and IRIX require 'stream' instead of 'unix'.)
  93. A value of 'inet' will connect to an INET socket (either tcp or udp,
  94. tried in that order) returned by getservbyname(). 'tcp' and 'udp' can
  95. also be given as values. The value 'console' will send messages
  96. directly to the console, as for the 'cons' option in the logopts in
  97. openlog().
  98.  
  99. A reference to an array can also be passed as the first parameter.
  100. When this calling method is used, the array should contain a list of
  101. sock_types which are attempted in order.
  102.  
  103. The default is to try tcp, udp, unix, stream, console.
  104.  
  105. Giving an invalid value for sock_type will croak.
  106.  
  107. =item closelog
  108.  
  109. Closes the log file.
  110.  
  111. =back
  112.  
  113. Note that C<openlog> now takes three arguments, just like C<openlog(3)>.
  114.  
  115. =head1 EXAMPLES
  116.  
  117.     openlog($program, 'cons,pid', 'user');
  118.     syslog('info', '%s', 'this is another test');
  119.     syslog('mail|warning', 'this is a better test: %d', time);
  120.     closelog();
  121.  
  122.     syslog('debug', 'this is the last test');
  123.  
  124.     setlogsock('unix');
  125.     openlog("$program $$", 'ndelay', 'user');
  126.     syslog('notice', 'fooprogram: this is really done');
  127.  
  128.     setlogsock('inet');
  129.     $! = 55;
  130.     syslog('info', 'problem was %m'); # %m == $! in syslog(3)
  131.  
  132.     # Log to UDP port on $remotehost instead of logging locally
  133.     setlogsock('udp');
  134.     $Sys::Syslog::host = $remotehost;
  135.     openlog($program, 'ndelay', 'user');
  136.     syslog('info', 'something happened over here');
  137.  
  138. =head1 SEE ALSO
  139.  
  140. L<syslog(3)>
  141.  
  142. =head1 AUTHOR
  143.  
  144. Tom Christiansen E<lt>F<tchrist@perl.com>E<gt> and Larry Wall
  145. E<lt>F<larry@wall.org>E<gt>.
  146.  
  147. UNIX domain sockets added by Sean Robinson
  148. E<lt>F<robinson_s@sc.maricopa.edu>E<gt> with support from Tim Bunce 
  149. E<lt>F<Tim.Bunce@ig.co.uk>E<gt> and the perl5-porters mailing list.
  150.  
  151. Dependency on F<syslog.ph> replaced with XS code by Tom Hughes
  152. E<lt>F<tom@compton.nu>E<gt>.
  153.  
  154. Code for constant()s regenerated by Nicholas Clark E<lt>F<nick@ccl4.org>E<gt>.
  155.  
  156. Failover to different communication modes by Nick Williams
  157. E<lt>F<Nick.Williams@morganstanley.com>E<gt>.
  158.  
  159. =cut
  160.  
  161. sub AUTOLOAD {
  162.     # This AUTOLOAD is used to 'autoload' constants from the constant()
  163.     # XS function.
  164.     
  165.     my $constname;
  166.     our $AUTOLOAD;
  167.     ($constname = $AUTOLOAD) =~ s/.*:://;
  168.     croak "&Sys::Syslog::constant not defined" if $constname eq 'constant';
  169.     my ($error, $val) = constant($constname);
  170.     if ($error) {
  171.     croak $error;
  172.     }
  173.     no strict 'refs';
  174.     *$AUTOLOAD = sub { $val };
  175.     goto &$AUTOLOAD;
  176. }
  177.  
  178. bootstrap Sys::Syslog $VERSION;
  179.  
  180. our $maskpri = &LOG_UPTO(&LOG_DEBUG);
  181.  
  182. sub openlog {
  183.     our ($ident, $logopt, $facility) = @_;  # package vars
  184.     our $lo_pid = $logopt =~ /\bpid\b/;
  185.     our $lo_ndelay = $logopt =~ /\bndelay\b/;
  186.     our $lo_nowait = $logopt =~ /\bnowait\b/;
  187.     return 1 unless $lo_ndelay;
  188.     &connect;
  189.  
  190. sub closelog {
  191.     our $facility = our $ident = '';
  192.     &disconnect;
  193.  
  194. sub setlogmask {
  195.     my $oldmask = $maskpri;
  196.     $maskpri = shift;
  197.     $oldmask;
  198. }
  199.  
  200. sub setlogsock {
  201.     my $setsock = shift;
  202.     $syslog_path = shift;
  203.     &disconnect if $connected;
  204.     $transmit_ok = 0;
  205.     @fallbackMethods = ();
  206.     @connectMethods = @defaultMethods;
  207.     if (ref $setsock eq 'ARRAY') {
  208.     @connectMethods = @$setsock;
  209.     } elsif (lc($setsock) eq 'stream') {
  210.     unless (defined $syslog_path) {
  211.         my @try = qw(/dev/log /dev/conslog);
  212.         if (length &_PATH_LOG) { # Undefined _PATH_LOG is "".
  213.         unshift @try, &_PATH_LOG;
  214.             }
  215.         for my $try (@try) {
  216.         if (-w $try) {
  217.             $syslog_path = $try;
  218.             last;
  219.         }
  220.         }
  221.         carp "stream passed to setlogsock, but could not find any device"
  222.         unless defined $syslog_path;
  223.         }
  224.     unless (-w $syslog_path) {
  225.         carp "stream passed to setlogsock, but $syslog_path is not writable";
  226.         return undef;
  227.     } else {
  228.         @connectMethods = ( 'stream' );
  229.     }
  230.     } elsif (lc($setsock) eq 'unix') {
  231.         if (length _PATH_LOG() && !defined $syslog_path) {
  232.         $syslog_path = _PATH_LOG();
  233.         @connectMethods = ( 'unix' );
  234.         } else {
  235.         carp 'unix passed to setlogsock, but path not available';
  236.         return undef;
  237.         }
  238.     } elsif (lc($setsock) eq 'tcp') {
  239.     if (getservbyname('syslog', 'tcp') || getservbyname('syslogng', 'tcp')) {
  240.         @connectMethods = ( 'tcp' );
  241.     } else {
  242.         carp "tcp passed to setlogsock, but tcp service unavailable";
  243.         return undef;
  244.     }
  245.     } elsif (lc($setsock) eq 'udp') {
  246.     if (getservbyname('syslog', 'udp')) {
  247.         @connectMethods = ( 'udp' );
  248.     } else {
  249.         carp "udp passed to setlogsock, but udp service unavailable";
  250.         return undef;
  251.     }
  252.     } elsif (lc($setsock) eq 'inet') {
  253.     @connectMethods = ( 'tcp', 'udp' );
  254.     } elsif (lc($setsock) eq 'console') {
  255.     @connectMethods = ( 'console' );
  256.     } else {
  257.         carp "Invalid argument passed to setlogsock; must be 'stream', 'unix', 'tcp', 'udp' or 'inet'";
  258.     }
  259.     return 1;
  260. }
  261.  
  262. sub syslog {
  263.     my $priority = shift;
  264.     my $mask = shift;
  265.     my ($message, $whoami);
  266.     my (@words, $num, $numpri, $numfac, $sum);
  267.     our $facility;
  268.     local($facility) = $facility;    # may need to change temporarily.
  269.  
  270.     croak "syslog: expecting argument \$priority" unless $priority;
  271.     croak "syslog: expecting argument \$format"   unless $mask;
  272.  
  273.     @words = split(/\W+/, $priority, 2);# Allow "level" or "level|facility".
  274.     undef $numpri;
  275.     undef $numfac;
  276.     foreach (@words) {
  277.     $num = &xlate($_);        # Translate word to number.
  278.     if (/^kern$/ || $num < 0) {
  279.         croak "syslog: invalid level/facility: $_";
  280.     }
  281.     elsif ($num <= &LOG_PRIMASK) {
  282.         croak "syslog: too many levels given: $_" if defined($numpri);
  283.         $numpri = $num;
  284.         return 0 unless &LOG_MASK($numpri) & $maskpri;
  285.     }
  286.     else {
  287.         croak "syslog: too many facilities given: $_" if defined($numfac);
  288.         $facility = $_;
  289.         $numfac = $num;
  290.     }
  291.     }
  292.  
  293.     croak "syslog: level must be given" unless defined($numpri);
  294.  
  295.     if (!defined($numfac)) {    # Facility not specified in this call.
  296.     $facility = 'user' unless $facility;
  297.     $numfac = &xlate($facility);
  298.     }
  299.  
  300.     &connect unless $connected;
  301.  
  302.     $whoami = our $ident;
  303.  
  304.     if (!$whoami && $mask =~ /^(\S.*?):\s?(.*)/) {
  305.     $whoami = $1;
  306.     $mask = $2;
  307.     } 
  308.  
  309.     unless ($whoami) {
  310.     ($whoami = getlogin) ||
  311.         ($whoami = getpwuid($<)) ||
  312.         ($whoami = 'syslog');
  313.     }
  314.  
  315.     $whoami .= "[$$]" if our $lo_pid;
  316.  
  317.     $mask =~ s/(?<!%)%m/$!/g;
  318.     $mask .= "\n" unless $mask =~ /\n$/;
  319.     $message = sprintf ($mask, @_);
  320.  
  321.     $sum = $numpri + $numfac;
  322.     my $buf = "<$sum>$whoami: $message\0";
  323.  
  324.     # it's possible that we'll get an error from sending
  325.     # (e.g. if method is UDP and there is no UDP listener,
  326.     # then we'll get ECONNREFUSED on the send). So what we
  327.     # want to do at this point is to fallback onto a different
  328.     # connection method.
  329.     while (scalar @fallbackMethods || $syslog_send) {
  330.     if ($failed && (time - $fail_time) > 60) {
  331.         # it's been a while... maybe things have been fixed
  332.         @fallbackMethods = ();
  333.         disconnect();
  334.         $transmit_ok = 0; # make it look like a fresh attempt
  335.         &connect;
  336.         }
  337.     if ($connected && !connection_ok()) {
  338.         # Something was OK, but has now broken. Remember coz we'll
  339.         # want to go back to what used to be OK.
  340.         $failed = $current_proto unless $failed;
  341.         $fail_time = time;
  342.         disconnect();
  343.     }
  344.     &connect unless $connected;
  345.     $failed = undef if ($current_proto && $failed && $current_proto eq $failed);
  346.     if ($syslog_send) {
  347.         if (&{$syslog_send}($buf)) {
  348.         $transmit_ok++;
  349.         return 1;
  350.         }
  351.         # typically doesn't happen, since errors are rare from write().
  352.         disconnect();
  353.     }
  354.     }
  355.     # could not send, could not fallback onto a working
  356.     # connection method. Lose.
  357.     return 0;
  358. }
  359.  
  360. sub _syslog_send_console {
  361.     my ($buf) = @_;
  362.     chop($buf); # delete the NUL from the end
  363.     # The console print is a method which could block
  364.     # so we do it in a child process and always return success
  365.     # to the caller.
  366.     if (my $pid = fork) {
  367.     our $lo_nowait;
  368.     if ($lo_nowait) {
  369.         return 1;
  370.     } else {
  371.         if (waitpid($pid, 0) >= 0) {
  372.             return ($? >> 8);
  373.         } else {
  374.         # it's possible that the caller has other
  375.         # plans for SIGCHLD, so let's not interfere
  376.         return 1;
  377.         }
  378.     }
  379.     } else {
  380.         if (open(CONS, ">/dev/console")) {
  381.         my $ret = print CONS $buf . "\r";
  382.         exit ($ret) if defined $pid;
  383.         close CONS;
  384.     }
  385.     exit if defined $pid;
  386.     }
  387. }
  388.  
  389. sub _syslog_send_stream {
  390.     my ($buf) = @_;
  391.     # XXX: this only works if the OS stream implementation makes a write 
  392.     # look like a putmsg() with simple header. For instance it works on 
  393.     # Solaris 8 but not Solaris 7.
  394.     # To be correct, it should use a STREAMS API, but perl doesn't have one.
  395.     return syswrite(SYSLOG, $buf, length($buf));
  396. }
  397. sub _syslog_send_socket {
  398.     my ($buf) = @_;
  399.     return syswrite(SYSLOG, $buf, length($buf));
  400.     #return send(SYSLOG, $buf, 0);
  401. }
  402.  
  403. sub xlate {
  404.     my($name) = @_;
  405.     return $name+0 if $name =~ /^\s*\d+\s*$/;
  406.     $name = uc $name;
  407.     $name = "LOG_$name" unless $name =~ /^LOG_/;
  408.     $name = "Sys::Syslog::$name";
  409.     # Can't have just eval { &$name } || -1 because some LOG_XXX may be zero.
  410.     my $value = eval { no strict 'refs'; &$name };
  411.     defined $value ? $value : -1;
  412. }
  413.  
  414. sub connect {
  415.     @fallbackMethods = @connectMethods unless (scalar @fallbackMethods);
  416.     if ($transmit_ok && $current_proto) {
  417.     # Retry what we were on, because it's worked in the past.
  418.     unshift(@fallbackMethods, $current_proto);
  419.     }
  420.     $connected = 0;
  421.     my @errs = ();
  422.     my $proto = undef;
  423.     while ($proto = shift(@fallbackMethods)) {
  424.     no strict 'refs';
  425.     my $fn = "connect_$proto";
  426.     $connected = &$fn(\@errs) if defined &$fn;
  427.     last if ($connected);
  428.     }
  429.  
  430.     $transmit_ok = 0;
  431.     if ($connected) {
  432.     $current_proto = $proto;
  433.         my($old) = select(SYSLOG); $| = 1; select($old);
  434.     } else {
  435.     @fallbackMethods = ();
  436.     foreach my $err (@errs) {
  437.         carp $err;
  438.     }
  439.     croak "no connection to syslog available";
  440.     }
  441. }
  442.  
  443. sub connect_tcp {
  444.     my ($errs) = @_;
  445.     unless ($host) {
  446.     require Sys::Hostname;
  447.     my($host_uniq) = Sys::Hostname::hostname();
  448.     ($host) = $host_uniq =~ /([A-Za-z0-9_.-]+)/; # allow FQDN (inc _)
  449.     }
  450.     my $tcp = getprotobyname('tcp');
  451.     if (!defined $tcp) {
  452.     push(@{$errs}, "getprotobyname failed for tcp");
  453.     return 0;
  454.     }
  455.     my $syslog = getservbyname('syslog','tcp');
  456.     $syslog = getservbyname('syslogng','tcp') unless (defined $syslog);
  457.     if (!defined $syslog) {
  458.     push(@{$errs}, "getservbyname failed for tcp");
  459.     return 0;
  460.     }
  461.  
  462.     my $this = sockaddr_in($syslog, INADDR_ANY);
  463.     my $that = sockaddr_in($syslog, inet_aton($host));
  464.     if (!$that) {
  465.     push(@{$errs}, "can't lookup $host");
  466.     return 0;
  467.     }
  468.     if (!socket(SYSLOG,AF_INET,SOCK_STREAM,$tcp)) {
  469.     push(@{$errs}, "tcp socket: $!");
  470.     return 0;
  471.     }
  472.     setsockopt(SYSLOG, SOL_SOCKET, SO_KEEPALIVE, 1);
  473.     setsockopt(SYSLOG, IPPROTO_TCP, TCP_NODELAY, 1);
  474.     if (!CORE::connect(SYSLOG,$that)) {
  475.     push(@{$errs}, "tcp connect: $!");
  476.     return 0;
  477.     }
  478.     $syslog_send = \&_syslog_send_socket;
  479.     return 1;
  480. }
  481.  
  482. sub connect_udp {
  483.     my ($errs) = @_;
  484.     unless ($host) {
  485.     require Sys::Hostname;
  486.     my($host_uniq) = Sys::Hostname::hostname();
  487.     ($host) = $host_uniq =~ /([A-Za-z0-9_.-]+)/; # allow FQDN (inc _)
  488.     }
  489.     my $udp = getprotobyname('udp');
  490.     if (!defined $udp) {
  491.     push(@{$errs}, "getprotobyname failed for udp");
  492.     return 0;
  493.     }
  494.     my $syslog = getservbyname('syslog','udp');
  495.     if (!defined $syslog) {
  496.     push(@{$errs}, "getservbyname failed for udp");
  497.     return 0;
  498.     }
  499.     my $this = sockaddr_in($syslog, INADDR_ANY);
  500.     my $that = sockaddr_in($syslog, inet_aton($host));
  501.     if (!$that) {
  502.     push(@{$errs}, "can't lookup $host");
  503.     return 0;
  504.     }
  505.     if (!socket(SYSLOG,AF_INET,SOCK_DGRAM,$udp)) {
  506.     push(@{$errs}, "udp socket: $!");
  507.     return 0;
  508.     }
  509.     if (!CORE::connect(SYSLOG,$that)) {
  510.     push(@{$errs}, "udp connect: $!");
  511.     return 0;
  512.     }
  513.     # We want to check that the UDP connect worked. However the only
  514.     # way to do that is to send a message and see if an ICMP is returned
  515.     _syslog_send_socket("");
  516.     if (!connection_ok()) {
  517.     push(@{$errs}, "udp connect: nobody listening");
  518.     return 0;
  519.     }
  520.     $syslog_send = \&_syslog_send_socket;
  521.     return 1;
  522. }
  523.  
  524. sub connect_stream {
  525.     my ($errs) = @_;
  526.     # might want syslog_path to be variable based on syslog.h (if only
  527.     # it were in there!)
  528.     $syslog_path = '/dev/conslog'; 
  529.     if (!-w $syslog_path) {
  530.     push(@{$errs}, "stream $syslog_path is not writable");
  531.     return 0;
  532.     }
  533.     if (!open(SYSLOG, ">" . $syslog_path)) {
  534.     push(@{$errs}, "stream can't open $syslog_path: $!");
  535.     return 0;
  536.     }
  537.     $syslog_send = \&_syslog_send_stream;
  538.     return 1;
  539. }
  540.  
  541. sub connect_unix {
  542.     my ($errs) = @_;
  543.     if (length _PATH_LOG()) {
  544.     $syslog_path = _PATH_LOG();
  545.     } else {
  546.         push(@{$errs}, "_PATH_LOG not available in syslog.h");
  547.     return 0;
  548.     }
  549.     my $that = sockaddr_un($syslog_path);
  550.     if (!$that) {
  551.     push(@{$errs}, "can't locate $syslog_path");
  552.     return 0;
  553.     }
  554.     if (!socket(SYSLOG,AF_UNIX,SOCK_STREAM,0)) {
  555.     push(@{$errs}, "unix stream socket: $!");
  556.     return 0;
  557.     }
  558.     if (!CORE::connect(SYSLOG,$that)) {
  559.         if (!socket(SYSLOG,AF_UNIX,SOCK_DGRAM,0)) {
  560.         push(@{$errs}, "unix dgram socket: $!");
  561.         return 0;
  562.     }
  563.         if (!CORE::connect(SYSLOG,$that)) {
  564.         push(@{$errs}, "unix dgram connect: $!");
  565.         return 0;
  566.     }
  567.     }
  568.     $syslog_send = \&_syslog_send_socket;
  569.     return 1;
  570. }
  571.  
  572. sub connect_console {
  573.     my ($errs) = @_;
  574.     if (!-w '/dev/console') {
  575.     push(@{$errs}, "console is not writable");
  576.     return 0;
  577.     }
  578.     $syslog_send = \&_syslog_send_console;
  579.     return 1;
  580. }
  581.  
  582. # to test if the connection is still good, we need to check if any
  583. # errors are present on the connection. The errors will not be raised
  584. # by a write. Instead, sockets are made readable and the next read
  585. # would cause the error to be returned. Unfortunately the syslog 
  586. # 'protocol' never provides anything for us to read. But with 
  587. # judicious use of select(), we can see if it would be readable...
  588. sub connection_ok {
  589.     return 1 if (defined $current_proto && $current_proto eq 'console');
  590.     my $rin = '';
  591.     vec($rin, fileno(SYSLOG), 1) = 1;
  592.     my $ret = select $rin, undef, $rin, 0;
  593.     return ($ret ? 0 : 1);
  594. }
  595.  
  596. sub disconnect {
  597.     close SYSLOG;
  598.     $connected = 0;
  599.     $syslog_send = undef;
  600. }
  601.  
  602. 1;
  603.